home *** CD-ROM | disk | FTP | other *** search
/ Scene Storm / Scene Storm - Volume 1.iso / coding / c / amiexpress / source / ae / code / ax3.00 / myseek.c < prev    next >
Encoding:
C/C++ Source or Header  |  1980-01-03  |  294 b   |  15 lines

  1. extern struct Library *DOSBase;
  2. #include <pragmas/dos_pragmas.h>
  3. #include <pragmas/exec_pragmas.h>
  4. #include <dos/dos.h>
  5. #include <exec/exec.h>
  6. #include <clib/dos_protos.h>
  7. long MySeek(BPTR f,long pos,long mode)
  8. {
  9.  long shit;
  10.  
  11.  Seek(f,pos,mode);
  12.  shit=Seek(f,0,OFFSET_CURRENT);
  13.  return(shit);
  14. }
  15.